home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 1.toast / Sample Code / Games / DroneZone / DZDisplay.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-28  |  706 b   |  48 lines  |  [TEXT/MPS ]

  1. /*
  2.  *    File:        DZDisplay.h
  3.  *
  4.  *    Copyright © 1996 Apple Computer, Inc.
  5.  */
  6.  
  7. #ifndef __DZDisplay__
  8. #define __DZDisplay__
  9.  
  10. #include <Windows.h>
  11.  
  12. #include <QD3D.h>
  13.  
  14. void Display_Init(
  15.     void);
  16.  
  17. void Display_Exit(
  18.     void);
  19.  
  20. void Display_Activate(
  21.     Boolean                    inActivate);
  22.  
  23. Boolean Display_IsActive(
  24.     void);
  25.  
  26. void Display_DrawGrow(
  27.     void);
  28.  
  29. void Display_DrawContents(
  30.     void);
  31.  
  32. void Display_Resize(
  33.     void);
  34.  
  35. WindowPtr Display_GetWindow(
  36.     void);
  37.  
  38. void Display_SetViewerPosition(
  39.     const TQ3Point3D*        inPosition,
  40.     const TQ3Vector3D*        inDirection,
  41.     const TQ3Vector3D*        inUp);
  42.  
  43. void Display_GetViewerPosition(
  44.     TQ3Point3D*                outPosition,
  45.     TQ3Vector3D*            outDirection,
  46.     TQ3Vector3D*            outUp);
  47.  
  48. #endif /* __DZDisplay__ */